home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000393_fdc@columbia.edu_Tue Feb 26 12:25:43 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  32 lines

  1. Article: 13241 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Timeout on FTP connections
  6. Date: 26 Feb 2002 12:25:36 -0500
  7. Organization: Columbia University
  8. Lines: 15
  9. Message-ID: <a5ggeg$17u$1@watsol.cc.columbia.edu>
  10. References: <1aPe8.900$Sj7.352356@news1.news.adelphia.net>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1014744337 14530 128.59.39.139 (26 Feb 2002 17:25:37 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 26 Feb 2002 17:25:37 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13241
  16.  
  17. In article <1aPe8.900$Sj7.352356@news1.news.adelphia.net>,
  18. williecdog <williecdog@adelphia.net> wrote:
  19. : How can I set a timeout value when making FTP connections?  For instance,
  20. : when I attempt to connect to a server which is down, is there a way it will
  21. : "give up" on connecting after 10 seconds instead of the default (which seems
  22. : like a long time)?
  23. It's not a Kermit parameter, it's a TCP parameter.  I don't think there's
  24. any way to change it, short of editing the source code for your TCP/IP stack,
  25. rebuilding, and reinstalling.  The same is true for any other kind of
  26. TCP connection: Telnet, SSH, HTTP, you name it.  The application asks the
  27. TCP/IP stack to make the connection, and the TCP/IP stack either makes it
  28. or times out based on its own criteria.
  29.  
  30. - Frank
  31.